home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / fcntl.c < prev    next >
C/C++ Source or Header  |  1990-07-21  |  261b  |  11 lines

  1. #include <lib.h>
  2. #include <fcntl.h>        /* for the proto; emphasize varargs kludge */
  3.  
  4. PUBLIC int fcntl(fd, cmd, barf)
  5. int fd;
  6. int cmd;
  7. int barf;            /* varargs; fix it when open is fixed */
  8. {
  9.   return(callm1(FS, FCNTL, fd, cmd, barf, NIL_PTR, NIL_PTR, NIL_PTR));
  10. }
  11.